| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609 |
- [
- {
- "__type__": "cc.SceneAsset",
- "_name": "scene_BASE2",
- "_objFlags": 0,
- "__editorExtras__": {},
- "_native": "",
- "scene": {
- "__id__": 1
- }
- },
- {
- "__type__": "cc.Scene",
- "_name": "scene_BASE2",
- "_objFlags": 0,
- "__editorExtras__": {},
- "_parent": null,
- "_children": [
- {
- "__id__": 2
- }
- ],
- "_active": true,
- "_components": [],
- "_prefab": null,
- "_lpos": {
- "__type__": "cc.Vec3",
- "x": 0,
- "y": 0,
- "z": 0
- },
- "_lrot": {
- "__type__": "cc.Quat",
- "x": 0,
- "y": 0,
- "z": 0,
- "w": 1
- },
- "_lscale": {
- "__type__": "cc.Vec3",
- "x": 1,
- "y": 1,
- "z": 1
- },
- "_mobility": 0,
- "_layer": 1073741824,
- "_euler": {
- "__type__": "cc.Vec3",
- "x": 0,
- "y": 0,
- "z": 0
- },
- "autoReleaseAssets": false,
- "_globals": {
- "__id__": 78
- },
- "_id": "5c31d935-079a-45dd-a3be-009c050edc97"
- },
- {
- "__type__": "cc.Node",
- "_name": "Canvas",
- "_objFlags": 512,
- "__editorExtras__": {},
- "_parent": {
- "__id__": 1
- },
- "_children": [
- {
- "__id__": 3
- },
- {
- "__id__": 5
- },
- {
- "__id__": 11
- },
- {
- "__id__": 17
- },
- {
- "__id__": 25
- },
- {
- "__id__": 30
- }
- ],
- "_active": true,
- "_components": [
- {
- "__id__": 75
- },
- {
- "__id__": 76
- },
- {
- "__id__": 77
- }
- ],
- "_prefab": null,
- "_lpos": {
- "__type__": "cc.Vec3",
- "x": 640,
- "y": 360,
- "z": 0
- },
- "_lrot": {
- "__type__": "cc.Quat",
- "x": 0,
- "y": 0,
- "z": 0,
- "w": 1
- },
- "_lscale": {
- "__type__": "cc.Vec3",
- "x": 1,
- "y": 1,
- "z": 1
- },
- "_mobility": 0,
- "_layer": 33554432,
- "_euler": {
- "__type__": "cc.Vec3",
- "x": 0,
- "y": 0,
- "z": 0
- },
- "_id": "18fpCjB0NLHpPINKSbm+HP"
- },
- {
- "__type__": "cc.Node",
- "_name": "Camera",
- "_objFlags": 512,
- "__editorExtras__": {},
- "_parent": {
- "__id__": 2
- },
- "_children": [],
- "_active": true,
- "_components": [
- {
- "__id__": 4
- }
- ],
- "_prefab": null,
- "_lpos": {
- "__type__": "cc.Vec3",
- "x": 0,
- "y": 0,
- "z": 1000
- },
- "_lrot": {
- "__type__": "cc.Quat",
- "x": 0,
- "y": 0,
- "z": 0,
- "w": 1
- },
- "_lscale": {
- "__type__": "cc.Vec3",
- "x": 1,
- "y": 1,
- "z": 1
- },
- "_mobility": 0,
- "_layer": 1073741824,
- "_euler": {
- "__type__": "cc.Vec3",
- "x": 0,
- "y": 0,
- "z": 0
- },
- "_id": "f88svJ0kZALaucPiUwRlMa"
- },
- {
- "__type__": "cc.Camera",
- "_name": "",
- "_objFlags": 0,
- "__editorExtras__": {},
- "node": {
- "__id__": 3
- },
- "_enabled": true,
- "__prefab": null,
- "_projection": 0,
- "_priority": 0,
- "_fov": 45,
- "_fovAxis": 0,
- "_orthoHeight": 361.7229336437718,
- "_near": 1,
- "_far": 2000,
- "_color": {
- "__type__": "cc.Color",
- "r": 48,
- "g": 48,
- "b": 48,
- "a": 255
- },
- "_depth": 1.1,
- "_stencil": 0,
- "_clearFlags": 7,
- "_rect": {
- "__type__": "cc.Rect",
- "x": 0,
- "y": 0,
- "width": 1,
- "height": 1
- },
- "_aperture": 19,
- "_shutter": 7,
- "_iso": 0,
- "_screenScale": 1,
- "_visibility": 1408253952,
- "_targetTexture": null,
- "_postProcess": null,
- "_usePostProcess": false,
- "_cameraType": -1,
- "_trackingType": 0,
- "_id": "82JDXspx1JorNUHiCORtVk"
- },
- {
- "__type__": "cc.Node",
- "_name": "gizmotagstar-001",
- "_objFlags": 0,
- "__editorExtras__": {},
- "_parent": {
- "__id__": 2
- },
- "_children": [],
- "_active": true,
- "_components": [
- {
- "__id__": 6
- },
- {
- "__id__": 7
- },
- {
- "__id__": 8
- },
- {
- "__id__": 9
- },
- {
- "__id__": 10
- }
- ],
- "_prefab": null,
- "_lpos": {
- "__type__": "cc.Vec3",
- "x": 13.526,
- "y": 242.666,
- "z": 0
- },
- "_lrot": {
- "__type__": "cc.Quat",
- "x": 0,
- "y": 0,
- "z": 0,
- "w": 1
- },
- "_lscale": {
- "__type__": "cc.Vec3",
- "x": 1,
- "y": 1,
- "z": 1
- },
- "_mobility": 0,
- "_layer": 33554432,
- "_euler": {
- "__type__": "cc.Vec3",
- "x": 0,
- "y": 0,
- "z": 0
- },
- "_id": "c4+mLvdUxLyoPdKFBpHf5t"
- },
- {
- "__type__": "cc.UITransform",
- "_name": "",
- "_objFlags": 0,
- "__editorExtras__": {},
- "node": {
- "__id__": 5
- },
- "_enabled": true,
- "__prefab": null,
- "_contentSize": {
- "__type__": "cc.Size",
- "width": 80,
- "height": 80
- },
- "_anchorPoint": {
- "__type__": "cc.Vec2",
- "x": 0.5,
- "y": 0.5
- },
- "_id": "ecCZgAdpNEtK+jQTOxtsZL"
- },
- {
- "__type__": "cc.Sprite",
- "_name": "",
- "_objFlags": 0,
- "__editorExtras__": {},
- "node": {
- "__id__": 5
- },
- "_enabled": true,
- "__prefab": null,
- "_customMaterial": null,
- "_srcBlendFactor": 2,
- "_dstBlendFactor": 4,
- "_color": {
- "__type__": "cc.Color",
- "r": 255,
- "g": 255,
- "b": 255,
- "a": 255
- },
- "_spriteFrame": {
- "__uuid__": "1cdf4d11-e65b-412d-991c-2cd428d2033a@f9941",
- "__expectedType__": "cc.SpriteFrame"
- },
- "_type": 0,
- "_fillType": 0,
- "_sizeMode": 0,
- "_fillCenter": {
- "__type__": "cc.Vec2",
- "x": 0,
- "y": 0
- },
- "_fillStart": 0,
- "_fillRange": 0,
- "_isTrimmedMode": true,
- "_useGrayscale": false,
- "_atlas": null,
- "_id": "b1StBf4pJEd46QjqJQTfPA"
- },
- {
- "__type__": "cc.CircleCollider2D",
- "_name": "",
- "_objFlags": 0,
- "__editorExtras__": {},
- "node": {
- "__id__": 5
- },
- "_enabled": true,
- "__prefab": null,
- "tag": 0,
- "_group": 1,
- "_density": 1,
- "_sensor": false,
- "_friction": 0.2,
- "_restitution": 1,
- "_offset": {
- "__type__": "cc.Vec2",
- "x": 0,
- "y": 0
- },
- "_radius": 39,
- "_id": "71Hz/hP+5CL4MVaCBxPk9e"
- },
- {
- "__type__": "cc.RigidBody2D",
- "_name": "",
- "_objFlags": 0,
- "__editorExtras__": {},
- "node": {
- "__id__": 5
- },
- "_enabled": true,
- "__prefab": null,
- "enabledContactListener": false,
- "bullet": false,
- "awakeOnLoad": true,
- "_group": 1,
- "_type": 2,
- "_allowSleep": true,
- "_gravityScale": 1,
- "_linearDamping": 0,
- "_angularDamping": 0,
- "_linearVelocity": {
- "__type__": "cc.Vec2",
- "x": 0,
- "y": 0
- },
- "_angularVelocity": 0,
- "_fixedRotation": false,
- "_id": "0636eJNhBGpbQKEgoaDQO2"
- },
- {
- "__type__": "083d8ftuS9OLodO1ov/lYhG",
- "_name": "",
- "_objFlags": 0,
- "__editorExtras__": {},
- "node": {
- "__id__": 5
- },
- "_enabled": true,
- "__prefab": null,
- "_id": "a0w1981K9BiK+J8uAxbnEa"
- },
- {
- "__type__": "cc.Node",
- "_name": "gizmotagstar",
- "_objFlags": 0,
- "__editorExtras__": {},
- "_parent": {
- "__id__": 2
- },
- "_children": [],
- "_active": true,
- "_components": [
- {
- "__id__": 12
- },
- {
- "__id__": 13
- },
- {
- "__id__": 14
- },
- {
- "__id__": 15
- },
- {
- "__id__": 16
- }
- ],
- "_prefab": null,
- "_lpos": {
- "__type__": "cc.Vec3",
- "x": -213.349,
- "y": 196.051,
- "z": 0
- },
- "_lrot": {
- "__type__": "cc.Quat",
- "x": 0,
- "y": 0,
- "z": 0,
- "w": 1
- },
- "_lscale": {
- "__type__": "cc.Vec3",
- "x": 1,
- "y": 1,
- "z": 1
- },
- "_mobility": 0,
- "_layer": 33554432,
- "_euler": {
- "__type__": "cc.Vec3",
- "x": 0,
- "y": 0,
- "z": 0
- },
- "_id": "15Bg4+wAVLup4+scvfsTvn"
- },
- {
- "__type__": "cc.UITransform",
- "_name": "",
- "_objFlags": 0,
- "__editorExtras__": {},
- "node": {
- "__id__": 11
- },
- "_enabled": true,
- "__prefab": null,
- "_contentSize": {
- "__type__": "cc.Size",
- "width": 80,
- "height": 80
- },
- "_anchorPoint": {
- "__type__": "cc.Vec2",
- "x": 0.5,
- "y": 0.5
- },
- "_id": "ceWgAKuoBC0LLvQ6TaGRpQ"
- },
- {
- "__type__": "cc.Sprite",
- "_name": "",
- "_objFlags": 0,
- "__editorExtras__": {},
- "node": {
- "__id__": 11
- },
- "_enabled": true,
- "__prefab": null,
- "_customMaterial": null,
- "_srcBlendFactor": 2,
- "_dstBlendFactor": 4,
- "_color": {
- "__type__": "cc.Color",
- "r": 255,
- "g": 255,
- "b": 255,
- "a": 255
- },
- "_spriteFrame": {
- "__uuid__": "1cdf4d11-e65b-412d-991c-2cd428d2033a@f9941",
- "__expectedType__": "cc.SpriteFrame"
- },
- "_type": 0,
- "_fillType": 0,
- "_sizeMode": 0,
- "_fillCenter": {
- "__type__": "cc.Vec2",
- "x": 0,
- "y": 0
- },
- "_fillStart": 0,
- "_fillRange": 0,
- "_isTrimmedMode": true,
- "_useGrayscale": false,
- "_atlas": null,
- "_id": "05G1AoPa5HObl/VTzvQ86G"
- },
- {
- "__type__": "cc.CircleCollider2D",
- "_name": "",
- "_objFlags": 0,
- "__editorExtras__": {},
- "node": {
- "__id__": 11
- },
- "_enabled": true,
- "__prefab": null,
- "tag": 0,
- "_group": 1,
- "_density": 1,
- "_sensor": false,
- "_friction": 0.2,
- "_restitution": 1,
- "_offset": {
- "__type__": "cc.Vec2",
- "x": 0,
- "y": 0
- },
- "_radius": 39,
- "_id": "74ADHy41dGLZnz3GRPlNrx"
- },
- {
- "__type__": "cc.RigidBody2D",
- "_name": "",
- "_objFlags": 0,
- "__editorExtras__": {},
- "node": {
- "__id__": 11
- },
- "_enabled": true,
- "__prefab": null,
- "enabledContactListener": false,
- "bullet": false,
- "awakeOnLoad": true,
- "_group": 1,
- "_type": 2,
- "_allowSleep": true,
- "_gravityScale": 1,
- "_linearDamping": 0,
- "_angularDamping": 0,
- "_linearVelocity": {
- "__type__": "cc.Vec2",
- "x": 0,
- "y": 0
- },
- "_angularVelocity": 0,
- "_fixedRotation": false,
- "_id": "86XT9bNj5BVIOjEwUVL/jQ"
- },
- {
- "__type__": "083d8ftuS9OLodO1ov/lYhG",
- "_name": "",
- "_objFlags": 0,
- "__editorExtras__": {},
- "node": {
- "__id__": 11
- },
- "_enabled": true,
- "__prefab": null,
- "_id": "04iERwiSRLL6tZj+WXFRDZ"
- },
- {
- "__type__": "cc.Node",
- "_name": "tips",
- "_objFlags": 0,
- "__editorExtras__": {},
- "_parent": {
- "__id__": 2
- },
- "_children": [
- {
- "__id__": 18
- }
- ],
- "_active": true,
- "_components": [
- {
- "__id__": 22
- },
- {
- "__id__": 23
- },
- {
- "__id__": 24
- }
- ],
- "_prefab": null,
- "_lpos": {
- "__type__": "cc.Vec3",
- "x": -334.6265,
- "y": 318.289,
- "z": 0
- },
- "_lrot": {
- "__type__": "cc.Quat",
- "x": 0,
- "y": 0,
- "z": 0,
- "w": 1
- },
- "_lscale": {
- "__type__": "cc.Vec3",
- "x": 1,
- "y": 1,
- "z": 1
- },
- "_mobility": 0,
- "_layer": 33554432,
- "_euler": {
- "__type__": "cc.Vec3",
- "x": 0,
- "y": 0,
- "z": 0
- },
- "_id": "d8Y6TGXWFPrYbp9ZswnefX"
- },
- {
- "__type__": "cc.Node",
- "_name": "Label",
- "_objFlags": 512,
- "__editorExtras__": {},
- "_parent": {
- "__id__": 17
- },
- "_children": [],
- "_active": true,
- "_components": [
- {
- "__id__": 19
- },
- {
- "__id__": 20
- },
- {
- "__id__": 21
- }
- ],
- "_prefab": null,
- "_lpos": {
- "__type__": "cc.Vec3",
- "x": 0,
- "y": 0,
- "z": 0
- },
- "_lrot": {
- "__type__": "cc.Quat",
- "x": 0,
- "y": 0,
- "z": 0,
- "w": 1
- },
- "_lscale": {
- "__type__": "cc.Vec3",
- "x": 1,
- "y": 1,
- "z": 1
- },
- "_mobility": 0,
- "_layer": 33554432,
- "_euler": {
- "__type__": "cc.Vec3",
- "x": 0,
- "y": 0,
- "z": 0
- },
- "_id": "6djhu4z/lCLZR9upEOPyYl"
- },
- {
- "__type__": "cc.UITransform",
- "_name": "",
- "_objFlags": 0,
- "__editorExtras__": {},
- "node": {
- "__id__": 18
- },
- "_enabled": true,
- "__prefab": null,
- "_contentSize": {
- "__type__": "cc.Size",
- "width": 610.747,
- "height": 83.422
- },
- "_anchorPoint": {
- "__type__": "cc.Vec2",
- "x": 0.5,
- "y": 0.5
- },
- "_id": "036UL+DCFAcoyNHBK+k+/J"
- },
- {
- "__type__": "cc.Label",
- "_name": "",
- "_objFlags": 0,
- "__editorExtras__": {},
- "node": {
- "__id__": 18
- },
- "_enabled": true,
- "__prefab": null,
- "_customMaterial": null,
- "_srcBlendFactor": 2,
- "_dstBlendFactor": 4,
- "_color": {
- "__type__": "cc.Color",
- "r": 237,
- "g": 255,
- "b": 105,
- "a": 255
- },
- "_string": "1:地形之间的跟随模式\n2:让地形跟随地表",
- "_horizontalAlign": 0,
- "_verticalAlign": 1,
- "_actualFontSize": 27,
- "_fontSize": 20,
- "_fontFamily": "Arial",
- "_lineHeight": 30,
- "_overflow": 2,
- "_enableWrapText": true,
- "_font": null,
- "_isSystemFontUsed": true,
- "_spacingX": 0,
- "_isItalic": false,
- "_isBold": false,
- "_isUnderline": false,
- "_underlineHeight": 2,
- "_cacheMode": 0,
- "_enableOutline": false,
- "_outlineColor": {
- "__type__": "cc.Color",
- "r": 0,
- "g": 0,
- "b": 0,
- "a": 255
- },
- "_outlineWidth": 2,
- "_enableShadow": false,
- "_shadowColor": {
- "__type__": "cc.Color",
- "r": 0,
- "g": 0,
- "b": 0,
- "a": 255
- },
- "_shadowOffset": {
- "__type__": "cc.Vec2",
- "x": 2,
- "y": 2
- },
- "_shadowBlur": 2,
- "_id": "a4U1JTDlFMopLxm5dmA78j"
- },
- {
- "__type__": "cc.Widget",
- "_name": "",
- "_objFlags": 0,
- "__editorExtras__": {},
- "node": {
- "__id__": 18
- },
- "_enabled": true,
- "__prefab": null,
- "_alignFlags": 45,
- "_target": null,
- "_left": 0,
- "_right": 0,
- "_top": 0,
- "_bottom": 0,
- "_horizontalCenter": 0,
- "_verticalCenter": 0,
- "_isAbsLeft": true,
- "_isAbsRight": true,
- "_isAbsTop": true,
- "_isAbsBottom": true,
- "_isAbsHorizontalCenter": true,
- "_isAbsVerticalCenter": true,
- "_originalWidth": 42.255859375,
- "_originalHeight": 50.4,
- "_alignMode": 2,
- "_lockFlags": 0,
- "_id": "7dc+K/jW9ItaiiUkUrpN1g"
- },
- {
- "__type__": "cc.UITransform",
- "_name": "",
- "_objFlags": 0,
- "__editorExtras__": {},
- "node": {
- "__id__": 17
- },
- "_enabled": true,
- "__prefab": null,
- "_contentSize": {
- "__type__": "cc.Size",
- "width": 610.747,
- "height": 83.422
- },
- "_anchorPoint": {
- "__type__": "cc.Vec2",
- "x": 0.5,
- "y": 0.5
- },
- "_id": "2d3E0GzM5I0ZvVk3EQ5PYU"
- },
- {
- "__type__": "cc.Sprite",
- "_name": "",
- "_objFlags": 0,
- "__editorExtras__": {},
- "node": {
- "__id__": 17
- },
- "_enabled": true,
- "__prefab": null,
- "_customMaterial": null,
- "_srcBlendFactor": 2,
- "_dstBlendFactor": 4,
- "_color": {
- "__type__": "cc.Color",
- "r": 0,
- "g": 0,
- "b": 0,
- "a": 255
- },
- "_spriteFrame": {
- "__uuid__": "7d8f9b89-4fd1-4c9f-a3ab-38ec7cded7ca@f9941",
- "__expectedType__": "cc.SpriteFrame"
- },
- "_type": 0,
- "_fillType": 0,
- "_sizeMode": 0,
- "_fillCenter": {
- "__type__": "cc.Vec2",
- "x": 0,
- "y": 0
- },
- "_fillStart": 0,
- "_fillRange": 0,
- "_isTrimmedMode": true,
- "_useGrayscale": false,
- "_atlas": null,
- "_id": "4eOmjkdIpPdKmTe05dw2ih"
- },
- {
- "__type__": "cc.Widget",
- "_name": "",
- "_objFlags": 0,
- "__editorExtras__": {},
- "node": {
- "__id__": 17
- },
- "_enabled": true,
- "__prefab": null,
- "_alignFlags": 9,
- "_target": null,
- "_left": 0,
- "_right": 0,
- "_top": 0,
- "_bottom": 588.5235,
- "_horizontalCenter": 0,
- "_verticalCenter": 0,
- "_isAbsLeft": true,
- "_isAbsRight": true,
- "_isAbsTop": true,
- "_isAbsBottom": true,
- "_isAbsHorizontalCenter": true,
- "_isAbsVerticalCenter": true,
- "_originalWidth": 757.8929999999999,
- "_originalHeight": 58.265,
- "_alignMode": 2,
- "_lockFlags": 0,
- "_id": "6dEqSC+EhOHJnUAek1P7xc"
- },
- {
- "__type__": "cc.Node",
- "_name": "地形",
- "_objFlags": 0,
- "__editorExtras__": {},
- "_parent": {
- "__id__": 2
- },
- "_children": [],
- "_active": true,
- "_components": [
- {
- "__id__": 26
- },
- {
- "__id__": 27
- },
- {
- "__id__": 29
- },
- {
- "__id__": 74
- }
- ],
- "_prefab": null,
- "_lpos": {
- "__type__": "cc.Vec3",
- "x": -58.152,
- "y": -125.331,
- "z": 0
- },
- "_lrot": {
- "__type__": "cc.Quat",
- "x": 0,
- "y": 0,
- "z": 0,
- "w": 1
- },
- "_lscale": {
- "__type__": "cc.Vec3",
- "x": 1,
- "y": 1,
- "z": 1
- },
- "_mobility": 0,
- "_layer": 33554432,
- "_euler": {
- "__type__": "cc.Vec3",
- "x": 0,
- "y": 0,
- "z": 0
- },
- "_id": "8fBvYZSytBMaJvjRTnw3a9"
- },
- {
- "__type__": "cc.UITransform",
- "_name": "",
- "_objFlags": 0,
- "__editorExtras__": {},
- "node": {
- "__id__": 25
- },
- "_enabled": true,
- "__prefab": null,
- "_contentSize": {
- "__type__": "cc.Size",
- "width": 100,
- "height": 100
- },
- "_anchorPoint": {
- "__type__": "cc.Vec2",
- "x": 0.5,
- "y": 0.5
- },
- "_id": "1eib71K9JNk5vccBTqOSbR"
- },
- {
- "__type__": "cc.MeshRenderer",
- "_name": "",
- "_objFlags": 0,
- "__editorExtras__": {},
- "node": {
- "__id__": 25
- },
- "_enabled": true,
- "__prefab": null,
- "_materials": [
- null
- ],
- "_visFlags": 0,
- "bakeSettings": {
- "__id__": 28
- },
- "_mesh": null,
- "_shadowCastingMode": 0,
- "_shadowReceivingMode": 1,
- "_shadowBias": 0,
- "_shadowNormalBias": 0,
- "_reflectionProbeId": -1,
- "_reflectionProbeBlendId": -1,
- "_reflectionProbeBlendWeight": 0,
- "_enabledGlobalStandardSkinObject": false,
- "_enableMorph": true,
- "_id": "daZqoWRqlBRIxS+cBntYO2"
- },
- {
- "__type__": "cc.ModelBakeSettings",
- "texture": null,
- "uvParam": {
- "__type__": "cc.Vec4",
- "x": 0,
- "y": 0,
- "z": 0,
- "w": 0
- },
- "_bakeable": false,
- "_castShadow": false,
- "_receiveShadow": false,
- "_recieveShadow": false,
- "_lightmapSize": 64,
- "_useLightProbe": false,
- "_bakeToLightProbe": true,
- "_reflectionProbeType": 0,
- "_bakeToReflectionProbe": true
- },
- {
- "__type__": "5895dAXMtRB5Y5LDDX4xP8/",
- "_name": "",
- "_objFlags": 0,
- "__editorExtras__": {},
- "node": {
- "__id__": 25
- },
- "_enabled": true,
- "__prefab": null,
- "_syncOnOff": true,
- "_syncTarget": {
- "__id__": 30
- },
- "_renderMode": 1,
- "_renderUVMode": 0,
- "_spEffectAsset": {
- "__uuid__": "6678422c-a9af-4d38-ab8b-535c51697f2e",
- "__expectedType__": "cc.EffectAsset"
- },
- "_spFrame": {
- "__uuid__": "9879776e-e258-4951-8d51-dac6a3c2ab45@f9941",
- "__expectedType__": "cc.SpriteFrame"
- },
- "_headTailFixedOnOff": false,
- "_headTailFrame": null,
- "_updownFix": false,
- "_thickness": 0,
- "_offset": {
- "__type__": "cc.Vec3",
- "x": 0,
- "y": 0,
- "z": 0
- },
- "_smoothness": 16,
- "_headTailCloseOnoff": false,
- "_innerMeshSprite": null,
- "_physcisOnOff": false,
- "_physicsThickness": 0,
- "_offsetCollider": {
- "__type__": "cc.Vec3",
- "x": 0,
- "y": 0,
- "z": 0
- },
- "_visibleOnOff": true,
- "_sortInXDirection": false,
- "_editWhenRun": true,
- "_gizmotag": {
- "__uuid__": "03aaf7a0-6d40-49dc-86c4-21026d37da49@f9941",
- "__expectedType__": "cc.SpriteFrame"
- },
- "_gizmoColor": {
- "__type__": "cc.Color",
- "r": 123,
- "g": 80,
- "b": 67,
- "a": 200
- },
- "_id": "35wsUeQgZFcKxp6JwL47of"
- },
- {
- "__type__": "cc.Node",
- "_name": "地表",
- "_objFlags": 0,
- "__editorExtras__": {},
- "_parent": {
- "__id__": 2
- },
- "_children": [
- {
- "__id__": 31
- },
- {
- "__id__": 36
- },
- {
- "__id__": 41
- },
- {
- "__id__": 46
- },
- {
- "__id__": 51
- },
- {
- "__id__": 56
- },
- {
- "__id__": 61
- },
- {
- "__id__": 66
- }
- ],
- "_active": true,
- "_components": [
- {
- "__id__": 69
- },
- {
- "__id__": 70
- },
- {
- "__id__": 72
- },
- {
- "__id__": 73
- }
- ],
- "_prefab": null,
- "_lpos": {
- "__type__": "cc.Vec3",
- "x": -58.152,
- "y": -125.331,
- "z": 0
- },
- "_lrot": {
- "__type__": "cc.Quat",
- "x": 0,
- "y": 0,
- "z": 0,
- "w": 1
- },
- "_lscale": {
- "__type__": "cc.Vec3",
- "x": 1,
- "y": 1,
- "z": 1
- },
- "_mobility": 0,
- "_layer": 33554432,
- "_euler": {
- "__type__": "cc.Vec3",
- "x": 0,
- "y": 0,
- "z": 0
- },
- "_id": "b4Gn2rxU5B4oDDOUzuUdEf"
- },
- {
- "__type__": "cc.Node",
- "_name": "gizmo_1",
- "_objFlags": 0,
- "__editorExtras__": {},
- "_parent": {
- "__id__": 30
- },
- "_children": [],
- "_active": true,
- "_components": [
- {
- "__id__": 32
- },
- {
- "__id__": 33
- },
- {
- "__id__": 34
- },
- {
- "__id__": 35
- }
- ],
- "_prefab": null,
- "_lpos": {
- "__type__": "cc.Vec3",
- "x": -1062.45,
- "y": 334.575,
- "z": 0
- },
- "_lrot": {
- "__type__": "cc.Quat",
- "x": 0,
- "y": 0,
- "z": 0.15744999262687437,
- "w": -0.9875269615670234
- },
- "_lscale": {
- "__type__": "cc.Vec3",
- "x": 1,
- "y": 1,
- "z": 1
- },
- "_mobility": 0,
- "_layer": 1073741824,
- "_euler": {
- "__type__": "cc.Vec3",
- "x": 0,
- "y": 0,
- "z": 341.8821689169717
- },
- "_id": "78uO0MFldKL6BkjRgiGBiv"
- },
- {
- "__type__": "cc.UIOpacity",
- "_name": "",
- "_objFlags": 0,
- "__editorExtras__": {},
- "node": {
- "__id__": 31
- },
- "_enabled": true,
- "__prefab": null,
- "_opacity": 255,
- "_id": "62mKr/9OxNeqtJI0AHio1B"
- },
- {
- "__type__": "cc.UITransform",
- "_name": "",
- "_objFlags": 0,
- "__editorExtras__": {},
- "node": {
- "__id__": 31
- },
- "_enabled": true,
- "__prefab": null,
- "_contentSize": {
- "__type__": "cc.Size",
- "width": 80,
- "height": 80
- },
- "_anchorPoint": {
- "__type__": "cc.Vec2",
- "x": 0.5,
- "y": 0.5
- },
- "_id": "57zJlvFPxFiZ1tcx+933Q6"
- },
- {
- "__type__": "cc.Sprite",
- "_name": "",
- "_objFlags": 0,
- "__editorExtras__": {},
- "node": {
- "__id__": 31
- },
- "_enabled": true,
- "__prefab": null,
- "_customMaterial": null,
- "_srcBlendFactor": 2,
- "_dstBlendFactor": 4,
- "_color": {
- "__type__": "cc.Color",
- "r": 255,
- "g": 114,
- "b": 14,
- "a": 200
- },
- "_spriteFrame": {
- "__uuid__": "03aaf7a0-6d40-49dc-86c4-21026d37da49@f9941",
- "__expectedType__": "cc.SpriteFrame"
- },
- "_type": 0,
- "_fillType": 0,
- "_sizeMode": 0,
- "_fillCenter": {
- "__type__": "cc.Vec2",
- "x": 0,
- "y": 0
- },
- "_fillStart": 0,
- "_fillRange": 0,
- "_isTrimmedMode": true,
- "_useGrayscale": false,
- "_atlas": null,
- "_id": "c3+JHi7mRAHLc7euuAwoUs"
- },
- {
- "__type__": "083d8ftuS9OLodO1ov/lYhG",
- "_name": "",
- "_objFlags": 0,
- "__editorExtras__": {},
- "node": {
- "__id__": 31
- },
- "_enabled": true,
- "__prefab": null,
- "_id": "ecufxIbddImKOCS/Dr5U7t"
- },
- {
- "__type__": "cc.Node",
- "_name": "gizmo_2",
- "_objFlags": 0,
- "__editorExtras__": {},
- "_parent": {
- "__id__": 30
- },
- "_children": [],
- "_active": true,
- "_components": [
- {
- "__id__": 37
- },
- {
- "__id__": 38
- },
- {
- "__id__": 39
- },
- {
- "__id__": 40
- }
- ],
- "_prefab": null,
- "_lpos": {
- "__type__": "cc.Vec3",
- "x": -390.783,
- "y": 114.809,
- "z": 0
- },
- "_lrot": {
- "__type__": "cc.Quat",
- "x": 0,
- "y": 0,
- "z": 0.6605739523085963,
- "w": -0.7507609829575591
- },
- "_lscale": {
- "__type__": "cc.Vec3",
- "x": 1,
- "y": 1,
- "z": 1
- },
- "_mobility": 0,
- "_layer": 1073741824,
- "_euler": {
- "__type__": "cc.Vec3",
- "x": 0,
- "y": 0,
- "z": 277.3126792865012
- },
- "_id": "a4fOV4CTxAlKigP/i/p2Xb"
- },
- {
- "__type__": "cc.UIOpacity",
- "_name": "",
- "_objFlags": 0,
- "__editorExtras__": {},
- "node": {
- "__id__": 36
- },
- "_enabled": true,
- "__prefab": null,
- "_opacity": 255,
- "_id": "1cLnY9yKlK8pPEidDL27Ui"
- },
- {
- "__type__": "cc.UITransform",
- "_name": "",
- "_objFlags": 0,
- "__editorExtras__": {},
- "node": {
- "__id__": 36
- },
- "_enabled": true,
- "__prefab": null,
- "_contentSize": {
- "__type__": "cc.Size",
- "width": 80,
- "height": 80
- },
- "_anchorPoint": {
- "__type__": "cc.Vec2",
- "x": 0.5,
- "y": 0.5
- },
- "_id": "72t2/W8axKy7DzlihJuGVi"
- },
- {
- "__type__": "cc.Sprite",
- "_name": "",
- "_objFlags": 0,
- "__editorExtras__": {},
- "node": {
- "__id__": 36
- },
- "_enabled": true,
- "__prefab": null,
- "_customMaterial": null,
- "_srcBlendFactor": 2,
- "_dstBlendFactor": 4,
- "_color": {
- "__type__": "cc.Color",
- "r": 255,
- "g": 114,
- "b": 14,
- "a": 200
- },
- "_spriteFrame": {
- "__uuid__": "03aaf7a0-6d40-49dc-86c4-21026d37da49@f9941",
- "__expectedType__": "cc.SpriteFrame"
- },
- "_type": 0,
- "_fillType": 0,
- "_sizeMode": 0,
- "_fillCenter": {
- "__type__": "cc.Vec2",
- "x": 0,
- "y": 0
- },
- "_fillStart": 0,
- "_fillRange": 0,
- "_isTrimmedMode": true,
- "_useGrayscale": false,
- "_atlas": null,
- "_id": "4c7viII5JDTpNk+HLrbQvc"
- },
- {
- "__type__": "083d8ftuS9OLodO1ov/lYhG",
- "_name": "",
- "_objFlags": 0,
- "__editorExtras__": {},
- "node": {
- "__id__": 36
- },
- "_enabled": true,
- "__prefab": null,
- "_id": "feop+bqApKKKPToLlzPiMM"
- },
- {
- "__type__": "cc.Node",
- "_name": "gizmo_6",
- "_objFlags": 0,
- "__editorExtras__": {},
- "_parent": {
- "__id__": 30
- },
- "_children": [],
- "_active": true,
- "_components": [
- {
- "__id__": 42
- },
- {
- "__id__": 43
- },
- {
- "__id__": 44
- },
- {
- "__id__": 45
- }
- ],
- "_prefab": null,
- "_lpos": {
- "__type__": "cc.Vec3",
- "x": -360.816,
- "y": -118.71,
- "z": 0
- },
- "_lrot": {
- "__type__": "cc.Quat",
- "x": 0,
- "y": 0,
- "z": 0.009877283041482375,
- "w": -0.9999512184500394
- },
- "_lscale": {
- "__type__": "cc.Vec3",
- "x": 1,
- "y": 1,
- "z": 1
- },
- "_mobility": 0,
- "_layer": 1073741824,
- "_euler": {
- "__type__": "cc.Vec3",
- "x": 0,
- "y": 0,
- "z": 358.8681283324559
- },
- "_id": "e5kkg/r1hPA6sIzSiz7vrk"
- },
- {
- "__type__": "cc.UIOpacity",
- "_name": "",
- "_objFlags": 0,
- "__editorExtras__": {},
- "node": {
- "__id__": 41
- },
- "_enabled": true,
- "__prefab": null,
- "_opacity": 255,
- "_id": "86hcTglQ5JNIrEsmDaAnDO"
- },
- {
- "__type__": "cc.UITransform",
- "_name": "",
- "_objFlags": 0,
- "__editorExtras__": {},
- "node": {
- "__id__": 41
- },
- "_enabled": true,
- "__prefab": null,
- "_contentSize": {
- "__type__": "cc.Size",
- "width": 80,
- "height": 80
- },
- "_anchorPoint": {
- "__type__": "cc.Vec2",
- "x": 0.5,
- "y": 0.5
- },
- "_id": "f06KFMgapL3qJ+vIRedBZK"
- },
- {
- "__type__": "cc.Sprite",
- "_name": "",
- "_objFlags": 0,
- "__editorExtras__": {},
- "node": {
- "__id__": 41
- },
- "_enabled": true,
- "__prefab": null,
- "_customMaterial": null,
- "_srcBlendFactor": 2,
- "_dstBlendFactor": 4,
- "_color": {
- "__type__": "cc.Color",
- "r": 255,
- "g": 114,
- "b": 14,
- "a": 200
- },
- "_spriteFrame": {
- "__uuid__": "03aaf7a0-6d40-49dc-86c4-21026d37da49@f9941",
- "__expectedType__": "cc.SpriteFrame"
- },
- "_type": 0,
- "_fillType": 0,
- "_sizeMode": 0,
- "_fillCenter": {
- "__type__": "cc.Vec2",
- "x": 0,
- "y": 0
- },
- "_fillStart": 0,
- "_fillRange": 0,
- "_isTrimmedMode": true,
- "_useGrayscale": false,
- "_atlas": null,
- "_id": "26AZvqaypOHo/oZxrIPndZ"
- },
- {
- "__type__": "083d8ftuS9OLodO1ov/lYhG",
- "_name": "",
- "_objFlags": 0,
- "__editorExtras__": {},
- "node": {
- "__id__": 41
- },
- "_enabled": true,
- "__prefab": null,
- "_id": "4f7aq5vk5GYbgAoks4V8P+"
- },
- {
- "__type__": "cc.Node",
- "_name": "gizmo_3",
- "_objFlags": 0,
- "__editorExtras__": {},
- "_parent": {
- "__id__": 30
- },
- "_children": [],
- "_active": true,
- "_components": [
- {
- "__id__": 47
- },
- {
- "__id__": 48
- },
- {
- "__id__": 49
- },
- {
- "__id__": 50
- }
- ],
- "_prefab": null,
- "_lpos": {
- "__type__": "cc.Vec3",
- "x": 160,
- "y": -129,
- "z": 0
- },
- "_lrot": {
- "__type__": "cc.Quat",
- "x": 0,
- "y": 0,
- "z": 0.039585859667575676,
- "w": 0.9992161726645435
- },
- "_lscale": {
- "__type__": "cc.Vec3",
- "x": 1,
- "y": 1,
- "z": 1
- },
- "_mobility": 0,
- "_layer": 1073741824,
- "_euler": {
- "__type__": "cc.Vec3",
- "x": 0,
- "y": 0,
- "z": 4.537390947011033
- },
- "_id": "4cJ5rJwcBNFoTNUPU9rngc"
- },
- {
- "__type__": "cc.UIOpacity",
- "_name": "",
- "_objFlags": 0,
- "__editorExtras__": {},
- "node": {
- "__id__": 46
- },
- "_enabled": true,
- "__prefab": null,
- "_opacity": 255,
- "_id": "d5YNPYKJZAZoNm7kMMII80"
- },
- {
- "__type__": "cc.UITransform",
- "_name": "",
- "_objFlags": 0,
- "__editorExtras__": {},
- "node": {
- "__id__": 46
- },
- "_enabled": true,
- "__prefab": null,
- "_contentSize": {
- "__type__": "cc.Size",
- "width": 80,
- "height": 80
- },
- "_anchorPoint": {
- "__type__": "cc.Vec2",
- "x": 0.5,
- "y": 0.5
- },
- "_id": "08tVYBnetBrKjNH7+pj6VL"
- },
- {
- "__type__": "cc.Sprite",
- "_name": "",
- "_objFlags": 0,
- "__editorExtras__": {},
- "node": {
- "__id__": 46
- },
- "_enabled": true,
- "__prefab": null,
- "_customMaterial": null,
- "_srcBlendFactor": 2,
- "_dstBlendFactor": 4,
- "_color": {
- "__type__": "cc.Color",
- "r": 255,
- "g": 114,
- "b": 14,
- "a": 200
- },
- "_spriteFrame": {
- "__uuid__": "03aaf7a0-6d40-49dc-86c4-21026d37da49@f9941",
- "__expectedType__": "cc.SpriteFrame"
- },
- "_type": 0,
- "_fillType": 0,
- "_sizeMode": 0,
- "_fillCenter": {
- "__type__": "cc.Vec2",
- "x": 0,
- "y": 0
- },
- "_fillStart": 0,
- "_fillRange": 0,
- "_isTrimmedMode": true,
- "_useGrayscale": false,
- "_atlas": null,
- "_id": "26bx4VnCtJ2qZ1b1pb94Vy"
- },
- {
- "__type__": "083d8ftuS9OLodO1ov/lYhG",
- "_name": "",
- "_objFlags": 0,
- "__editorExtras__": {},
- "node": {
- "__id__": 46
- },
- "_enabled": true,
- "__prefab": null,
- "_id": "bdBFRccVBK66VDfIwapOhg"
- },
- {
- "__type__": "cc.Node",
- "_name": "gizmo_5",
- "_objFlags": 0,
- "__editorExtras__": {},
- "_parent": {
- "__id__": 30
- },
- "_children": [],
- "_active": true,
- "_components": [
- {
- "__id__": 52
- },
- {
- "__id__": 53
- },
- {
- "__id__": 54
- },
- {
- "__id__": 55
- }
- ],
- "_prefab": null,
- "_lpos": {
- "__type__": "cc.Vec3",
- "x": 531.87,
- "y": -99.489,
- "z": 0
- },
- "_lrot": {
- "__type__": "cc.Quat",
- "x": 0,
- "y": 0,
- "z": 0.8242481137370635,
- "w": 0.5662287938641878
- },
- "_lscale": {
- "__type__": "cc.Vec3",
- "x": 1,
- "y": 1,
- "z": 1
- },
- "_mobility": 0,
- "_layer": 1073741824,
- "_euler": {
- "__type__": "cc.Vec3",
- "x": 0,
- "y": 0,
- "z": 111.02467094621659
- },
- "_id": "65K+jS2JRJ06UoG6HsN8pU"
- },
- {
- "__type__": "cc.UIOpacity",
- "_name": "",
- "_objFlags": 0,
- "__editorExtras__": {},
- "node": {
- "__id__": 51
- },
- "_enabled": true,
- "__prefab": null,
- "_opacity": 255,
- "_id": "0dx7b05OdOX57qH3PqK02U"
- },
- {
- "__type__": "cc.UITransform",
- "_name": "",
- "_objFlags": 0,
- "__editorExtras__": {},
- "node": {
- "__id__": 51
- },
- "_enabled": true,
- "__prefab": null,
- "_contentSize": {
- "__type__": "cc.Size",
- "width": 80,
- "height": 80
- },
- "_anchorPoint": {
- "__type__": "cc.Vec2",
- "x": 0.5,
- "y": 0.5
- },
- "_id": "fervJ5IJxOF6tWzk1fMlSq"
- },
- {
- "__type__": "cc.Sprite",
- "_name": "",
- "_objFlags": 0,
- "__editorExtras__": {},
- "node": {
- "__id__": 51
- },
- "_enabled": true,
- "__prefab": null,
- "_customMaterial": null,
- "_srcBlendFactor": 2,
- "_dstBlendFactor": 4,
- "_color": {
- "__type__": "cc.Color",
- "r": 255,
- "g": 114,
- "b": 14,
- "a": 200
- },
- "_spriteFrame": {
- "__uuid__": "03aaf7a0-6d40-49dc-86c4-21026d37da49@f9941",
- "__expectedType__": "cc.SpriteFrame"
- },
- "_type": 0,
- "_fillType": 0,
- "_sizeMode": 0,
- "_fillCenter": {
- "__type__": "cc.Vec2",
- "x": 0,
- "y": 0
- },
- "_fillStart": 0,
- "_fillRange": 0,
- "_isTrimmedMode": true,
- "_useGrayscale": false,
- "_atlas": null,
- "_id": "91Zm/XOTlMAo0eSu2kBhxv"
- },
- {
- "__type__": "083d8ftuS9OLodO1ov/lYhG",
- "_name": "",
- "_objFlags": 0,
- "__editorExtras__": {},
- "node": {
- "__id__": 51
- },
- "_enabled": true,
- "__prefab": null,
- "_id": "66/BllZ4hCL7oi5m8WMZJO"
- },
- {
- "__type__": "cc.Node",
- "_name": "gizmo_4",
- "_objFlags": 0,
- "__editorExtras__": {},
- "_parent": {
- "__id__": 30
- },
- "_children": [],
- "_active": true,
- "_components": [
- {
- "__id__": 57
- },
- {
- "__id__": 58
- },
- {
- "__id__": 59
- },
- {
- "__id__": 60
- }
- ],
- "_prefab": null,
- "_lpos": {
- "__type__": "cc.Vec3",
- "x": 430.838,
- "y": 163.37,
- "z": 0
- },
- "_lrot": {
- "__type__": "cc.Quat",
- "x": 0,
- "y": 0,
- "z": 0.17899175634331382,
- "w": 0.9838505735939456
- },
- "_lscale": {
- "__type__": "cc.Vec3",
- "x": 1,
- "y": 1,
- "z": 1
- },
- "_mobility": 0,
- "_layer": 1073741824,
- "_euler": {
- "__type__": "cc.Vec3",
- "x": 0,
- "y": 0,
- "z": 20.622075958277264
- },
- "_id": "c9089GS9JNHZ1+mKmURymY"
- },
- {
- "__type__": "cc.UIOpacity",
- "_name": "",
- "_objFlags": 0,
- "__editorExtras__": {},
- "node": {
- "__id__": 56
- },
- "_enabled": true,
- "__prefab": null,
- "_opacity": 255,
- "_id": "67OrtXrRhPTLraurMxVM8d"
- },
- {
- "__type__": "cc.UITransform",
- "_name": "",
- "_objFlags": 0,
- "__editorExtras__": {},
- "node": {
- "__id__": 56
- },
- "_enabled": true,
- "__prefab": null,
- "_contentSize": {
- "__type__": "cc.Size",
- "width": 80,
- "height": 80
- },
- "_anchorPoint": {
- "__type__": "cc.Vec2",
- "x": 0.5,
- "y": 0.5
- },
- "_id": "de+zPPZOFOYZ5STqglEMpd"
- },
- {
- "__type__": "cc.Sprite",
- "_name": "",
- "_objFlags": 0,
- "__editorExtras__": {},
- "node": {
- "__id__": 56
- },
- "_enabled": true,
- "__prefab": null,
- "_customMaterial": null,
- "_srcBlendFactor": 2,
- "_dstBlendFactor": 4,
- "_color": {
- "__type__": "cc.Color",
- "r": 255,
- "g": 114,
- "b": 14,
- "a": 200
- },
- "_spriteFrame": {
- "__uuid__": "03aaf7a0-6d40-49dc-86c4-21026d37da49@f9941",
- "__expectedType__": "cc.SpriteFrame"
- },
- "_type": 0,
- "_fillType": 0,
- "_sizeMode": 0,
- "_fillCenter": {
- "__type__": "cc.Vec2",
- "x": 0,
- "y": 0
- },
- "_fillStart": 0,
- "_fillRange": 0,
- "_isTrimmedMode": true,
- "_useGrayscale": false,
- "_atlas": null,
- "_id": "d2OUG/oypPmo8u64yoU1ee"
- },
- {
- "__type__": "083d8ftuS9OLodO1ov/lYhG",
- "_name": "",
- "_objFlags": 0,
- "__editorExtras__": {},
- "node": {
- "__id__": 56
- },
- "_enabled": true,
- "__prefab": null,
- "_id": "15vHK/By1DxqbJBPXygucz"
- },
- {
- "__type__": "cc.Node",
- "_name": "gizmo_7",
- "_objFlags": 0,
- "__editorExtras__": {},
- "_parent": {
- "__id__": 30
- },
- "_children": [],
- "_active": true,
- "_components": [
- {
- "__id__": 62
- },
- {
- "__id__": 63
- },
- {
- "__id__": 64
- },
- {
- "__id__": 65
- }
- ],
- "_prefab": null,
- "_lpos": {
- "__type__": "cc.Vec3",
- "x": 973.673,
- "y": 367.647,
- "z": 0
- },
- "_lrot": {
- "__type__": "cc.Quat",
- "x": 0,
- "y": 0,
- "z": 0,
- "w": 1
- },
- "_lscale": {
- "__type__": "cc.Vec3",
- "x": 1,
- "y": 1,
- "z": 1
- },
- "_mobility": 0,
- "_layer": 1073741824,
- "_euler": {
- "__type__": "cc.Vec3",
- "x": 0,
- "y": 0,
- "z": 0
- },
- "_id": "472BCErrFJDJdmXd6sZvkc"
- },
- {
- "__type__": "cc.UIOpacity",
- "_name": "",
- "_objFlags": 0,
- "__editorExtras__": {},
- "node": {
- "__id__": 61
- },
- "_enabled": true,
- "__prefab": null,
- "_opacity": 255,
- "_id": "29BSIDfehMJ4E6B2rFbA9P"
- },
- {
- "__type__": "cc.UITransform",
- "_name": "",
- "_objFlags": 0,
- "__editorExtras__": {},
- "node": {
- "__id__": 61
- },
- "_enabled": true,
- "__prefab": null,
- "_contentSize": {
- "__type__": "cc.Size",
- "width": 80,
- "height": 80
- },
- "_anchorPoint": {
- "__type__": "cc.Vec2",
- "x": 0.5,
- "y": 0.5
- },
- "_id": "96NM0ShatPj6ucJ4VjpscV"
- },
- {
- "__type__": "cc.Sprite",
- "_name": "",
- "_objFlags": 0,
- "__editorExtras__": {},
- "node": {
- "__id__": 61
- },
- "_enabled": true,
- "__prefab": null,
- "_customMaterial": null,
- "_srcBlendFactor": 2,
- "_dstBlendFactor": 4,
- "_color": {
- "__type__": "cc.Color",
- "r": 255,
- "g": 114,
- "b": 14,
- "a": 200
- },
- "_spriteFrame": {
- "__uuid__": "03aaf7a0-6d40-49dc-86c4-21026d37da49@f9941",
- "__expectedType__": "cc.SpriteFrame"
- },
- "_type": 0,
- "_fillType": 0,
- "_sizeMode": 0,
- "_fillCenter": {
- "__type__": "cc.Vec2",
- "x": 0,
- "y": 0
- },
- "_fillStart": 0,
- "_fillRange": 0,
- "_isTrimmedMode": true,
- "_useGrayscale": false,
- "_atlas": null,
- "_id": "f6dypdAohBor8UgGaFWrZx"
- },
- {
- "__type__": "083d8ftuS9OLodO1ov/lYhG",
- "_name": "",
- "_objFlags": 0,
- "__editorExtras__": {},
- "node": {
- "__id__": 61
- },
- "_enabled": true,
- "__prefab": null,
- "_id": "b66ePaIg5KRpk2ZuQhu3g2"
- },
- {
- "__type__": "cc.Node",
- "_name": "physicContainerNode",
- "_objFlags": 0,
- "__editorExtras__": {},
- "_parent": {
- "__id__": 30
- },
- "_children": [],
- "_active": true,
- "_components": [
- {
- "__id__": 67
- },
- {
- "__id__": 68
- }
- ],
- "_prefab": null,
- "_lpos": {
- "__type__": "cc.Vec3",
- "x": 0,
- "y": 0,
- "z": 0
- },
- "_lrot": {
- "__type__": "cc.Quat",
- "x": 0,
- "y": 0,
- "z": 0,
- "w": 1
- },
- "_lscale": {
- "__type__": "cc.Vec3",
- "x": 1,
- "y": 1,
- "z": 1
- },
- "_mobility": 0,
- "_layer": 1073741824,
- "_euler": {
- "__type__": "cc.Vec3",
- "x": 0,
- "y": 0,
- "z": 0
- },
- "_id": "70Pu35R6BLCIiZESHud6XW"
- },
- {
- "__type__": "cc.PolygonCollider2D",
- "_name": "",
- "_objFlags": 0,
- "__editorExtras__": {},
- "node": {
- "__id__": 66
- },
- "_enabled": true,
- "__prefab": null,
- "tag": 0,
- "_group": 1,
- "_density": 1,
- "_sensor": false,
- "_friction": 0.2,
- "_restitution": 0,
- "_offset": {
- "__type__": "cc.Vec2",
- "x": 0,
- "y": 0
- },
- "_points": [
- {
- "__type__": "cc.Vec2",
- "x": -1057.6053780827092,
- "y": 349.8239225350024
- },
- {
- "__type__": "cc.Vec2",
- "x": -1014.5575151071752,
- "y": 336.1475057268575
- },
- {
- "__type__": "cc.Vec2",
- "x": -969.5498231652058,
- "y": 322.5363444455282
- },
- {
- "__type__": "cc.Vec2",
- "x": -922.919804904469,
- "y": 308.9405394110072
- },
- {
- "__type__": "cc.Vec2",
- "x": -875.1448177386396,
- "y": 295.353583688069
- },
- {
- "__type__": "cc.Vec2",
- "x": -826.6991774572024,
- "y": 281.7674083252508
- },
- {
- "__type__": "cc.Vec2",
- "x": -778.0547369841901,
- "y": 268.17278097233196
- },
- {
- "__type__": "cc.Vec2",
- "x": -729.6811249904409,
- "y": 254.55946383870085
- },
- {
- "__type__": "cc.Vec2",
- "x": -682.0456993296465,
- "y": 240.9161831753155
- },
- {
- "__type__": "cc.Vec2",
- "x": -635.6132046951686,
- "y": 227.23040037912696
- },
- {
- "__type__": "cc.Vec2",
- "x": -590.845054722874,
- "y": 213.48780774665295
- },
- {
- "__type__": "cc.Vec2",
- "x": -548.1980620617928,
- "y": 199.6713643763141
- },
- {
- "__type__": "cc.Vec2",
- "x": -508.1222808317339,
- "y": 185.75947364424934
- },
- {
- "__type__": "cc.Vec2",
- "x": -471.0573490493343,
- "y": 171.72242821431678
- },
- {
- "__type__": "cc.Vec2",
- "x": -437.42625918687133,
- "y": 157.51511310929806
- },
- {
- "__type__": "cc.Vec2",
- "x": -407.62494768926496,
- "y": 143.06108866229263
- },
- {
- "__type__": "cc.Vec2",
- "x": -381.781942995053,
- "y": 128.0853277771911
- },
- {
- "__type__": "cc.Vec2",
- "x": -360.8811580015787,
- "y": 111.64928272757722
- },
- {
- "__type__": "cc.Vec2",
- "x": -345.94605723709316,
- "y": 93.20802837089099
- },
- {
- "__type__": "cc.Vec2",
- "x": -337.0242852288319,
- "y": 73.37454001527752
- },
- {
- "__type__": "cc.Vec2",
- "x": -333.60990738028465,
- "y": 53.110655206820354
- },
- {
- "__type__": "cc.Vec2",
- "x": -334.58759912047464,
- "y": 33.27889264452003
- },
- {
- "__type__": "cc.Vec2",
- "x": -338.65041209152355,
- "y": 14.246366738985376
- },
- {
- "__type__": "cc.Vec2",
- "x": -344.64828065333927,
- "y": -3.921133696948896
- },
- {
- "__type__": "cc.Vec2",
- "x": -351.60036184832273,
- "y": -21.195498197275885
- },
- {
- "__type__": "cc.Vec2",
- "x": -358.6121287451711,
- "y": -37.47243382606299
- },
- {
- "__type__": "cc.Vec2",
- "x": -364.8253571649624,
- "y": -52.5304798970459
- },
- {
- "__type__": "cc.Vec2",
- "x": -369.42611811653205,
- "y": -65.98816161590548
- },
- {
- "__type__": "cc.Vec2",
- "x": -371.76380242052204,
- "y": -77.26327380930995
- },
- {
- "__type__": "cc.Vec2",
- "x": -371.6759749869511,
- "y": -85.78451607327482
- },
- {
- "__type__": "cc.Vec2",
- "x": -369.5299665943368,
- "y": -92.01141856886395
- },
- {
- "__type__": "cc.Vec2",
- "x": -364.5420654387209,
- "y": -97.83112642776693
- },
- {
- "__type__": "cc.Vec2",
- "x": -353.9693341616674,
- "y": -104.16077733091034
- },
- {
- "__type__": "cc.Vec2",
- "x": -336.9852199988994,
- "y": -110.17319460712952
- },
- {
- "__type__": "cc.Vec2",
- "x": -315.17116937526345,
- "y": -115.22440865127707
- },
- {
- "__type__": "cc.Vec2",
- "x": -289.4371945034608,
- "y": -119.14004538043166
- },
- {
- "__type__": "cc.Vec2",
- "x": -260.4074444668216,
- "y": -121.95500540768688
- },
- {
- "__type__": "cc.Vec2",
- "x": -228.6435667200358,
- "y": -123.75988666047448
- },
- {
- "__type__": "cc.Vec2",
- "x": -194.6709386325424,
- "y": -124.66841417573953
- },
- {
- "__type__": "cc.Vec2",
- "x": -158.9938060223343,
- "y": -124.80460500497489
- },
- {
- "__type__": "cc.Vec2",
- "x": -122.10363469859175,
- "y": -124.29735468822481
- },
- {
- "__type__": "cc.Vec2",
- "x": -84.48374651459022,
- "y": -123.27799525782217
- },
- {
- "__type__": "cc.Vec2",
- "x": -46.611904150127366,
- "y": -121.87912616954735
- },
- {
- "__type__": "cc.Vec2",
- "x": -8.961691132995668,
- "y": -120.23402729648929
- },
- {
- "__type__": "cc.Vec2",
- "x": 27.99691359743742,
- "y": -118.47635811361282
- },
- {
- "__type__": "cc.Vec2",
- "x": 63.79764510091461,
- "y": -116.74001706284338
- },
- {
- "__type__": "cc.Vec2",
- "x": 97.97887241080892,
- "y": -115.15912552544592
- },
- {
- "__type__": "cc.Vec2",
- "x": 130.0858252856836,
- "y": -113.86818703184646
- },
- {
- "__type__": "cc.Vec2",
- "x": 159.6741510738485,
- "y": -113.00268784938841
- },
- {
- "__type__": "cc.Vec2",
- "x": 188.14444331850666,
- "y": -112.67556997072316
- },
- {
- "__type__": "cc.Vec2",
- "x": 217.0067011432807,
- "y": -112.81140696573853
- },
- {
- "__type__": "cc.Vec2",
- "x": 245.99721948237354,
- "y": -113.26541146803947
- },
- {
- "__type__": "cc.Vec2",
- "x": 274.88293891737914,
- "y": -113.89387654732043
- },
- {
- "__type__": "cc.Vec2",
- "x": 303.42693723374265,
- "y": -114.55419770335395
- },
- {
- "__type__": "cc.Vec2",
- "x": 331.3882914190396,
- "y": -115.10478215672713
- },
- {
- "__type__": "cc.Vec2",
- "x": 358.52147646343906,
- "y": -115.40524324066334
- },
- {
- "__type__": "cc.Vec2",
- "x": 384.5751615336851,
- "y": -115.31698404839986
- },
- {
- "__type__": "cc.Vec2",
- "x": 409.29015064560195,
- "y": -114.7044446859319
- },
- {
- "__type__": "cc.Vec2",
- "x": 432.39606691036573,
- "y": -113.43762156226663
- },
- {
- "__type__": "cc.Vec2",
- "x": 453.60626406964417,
- "y": -111.39717599946287
- },
- {
- "__type__": "cc.Vec2",
- "x": 472.610746801566,
- "y": -108.48496455722716
- },
- {
- "__type__": "cc.Vec2",
- "x": 489.06921684931643,
- "y": -104.64578579757654
- },
- {
- "__type__": "cc.Vec2",
- "x": 502.61660799505694,
- "y": -99.90977978797714
- },
- {
- "__type__": "cc.Vec2",
- "x": 512.926626099678,
- "y": -94.45593543258761
- },
- {
- "__type__": "cc.Vec2",
- "x": 519.2680546169436,
- "y": -89.165488809141
- },
- {
- "__type__": "cc.Vec2",
- "x": 521.4002715496763,
- "y": -85.23611064117762
- },
- {
- "__type__": "cc.Vec2",
- "x": 521.4464743585332,
- "y": -79.89386210685002
- },
- {
- "__type__": "cc.Vec2",
- "x": 518.2604597542529,
- "y": -70.20873916664159
- },
- {
- "__type__": "cc.Vec2",
- "x": 511.13573606055536,
- "y": -57.2174275874397
- },
- {
- "__type__": "cc.Vec2",
- "x": 500.6832137148712,
- "y": -42.053383996795596
- },
- {
- "__type__": "cc.Vec2",
- "x": 487.78559627651623,
- "y": -25.37395530129258
- },
- {
- "__type__": "cc.Vec2",
- "x": 473.3272209860308,
- "y": -7.5828982968388345
- },
- {
- "__type__": "cc.Vec2",
- "x": 458.1625179713707,
- "y": 11.036597733850389
- },
- {
- "__type__": "cc.Vec2",
- "x": 443.1204730242451,
- "y": 30.27242517788406
- },
- {
- "__type__": "cc.Vec2",
- "x": 429.0132022488847,
- "y": 49.975029719406805
- },
- {
- "__type__": "cc.Vec2",
- "x": 416.65232821193814,
- "y": 70.07465815540941
- },
- {
- "__type__": "cc.Vec2",
- "x": 406.8971510736778,
- "y": 90.61555976233741
- },
- {
- "__type__": "cc.Vec2",
- "x": 400.7906029710055,
- "y": 111.75296569032805
- },
- {
- "__type__": "cc.Vec2",
- "x": 399.7915660222606,
- "y": 133.48788734920527
- },
- {
- "__type__": "cc.Vec2",
- "x": 405.6063220481711,
- "y": 154.9476592143129
- },
- {
- "__type__": "cc.Vec2",
- "x": 418.7705477082986,
- "y": 174.05617106776788
- },
- {
- "__type__": "cc.Vec2",
- "x": 437.2767951678422,
- "y": 190.43578491568593
- },
- {
- "__type__": "cc.Vec2",
- "x": 459.572787338605,
- "y": 205.40042195523785
- },
- {
- "__type__": "cc.Vec2",
- "x": 485.55501709317576,
- "y": 219.58729961213083
- },
- {
- "__type__": "cc.Vec2",
- "x": 514.8622775348645,
- "y": 233.2217396455613
- },
- {
- "__type__": "cc.Vec2",
- "x": 547.1039876915466,
- "y": 246.4398903734864
- },
- {
- "__type__": "cc.Vec2",
- "x": 581.8632204337271,
- "y": 259.3343228233439
- },
- {
- "__type__": "cc.Vec2",
- "x": 618.7045863199901,
- "y": 271.97561238034956
- },
- {
- "__type__": "cc.Vec2",
- "x": 657.1803094154227,
- "y": 284.42262713287494
- },
- {
- "__type__": "cc.Vec2",
- "x": 696.8341685094725,
- "y": 296.72760240700023
- },
- {
- "__type__": "cc.Vec2",
- "x": 737.2039009321322,
- "y": 308.9387182879942
- },
- {
- "__type__": "cc.Vec2",
- "x": 777.8225778238393,
- "y": 321.1014014155649
- },
- {
- "__type__": "cc.Vec2",
- "x": 818.2192618764568,
- "y": 333.25890171202957
- },
- {
- "__type__": "cc.Vec2",
- "x": 857.9190968250691,
- "y": 345.45236848713927
- },
- {
- "__type__": "cc.Vec2",
- "x": 896.4428489049862,
- "y": 357.720454474025
- },
- {
- "__type__": "cc.Vec2",
- "x": 933.3057964082878,
- "y": 370.09829645266655
- },
- {
- "__type__": "cc.Vec2",
- "x": 968.2452022947664,
- "y": 382.69821297673576
- },
- {
- "__type__": "cc.Vec2",
- "x": 979.1007977052338,
- "y": 352.5957870232642
- },
- {
- "__type__": "cc.Vec2",
- "x": 943.8279172147589,
- "y": 339.8756122387397
- },
- {
- "__type__": "cc.Vec2",
- "x": 906.3915319543887,
- "y": 327.3052213072249
- },
- {
- "__type__": "cc.Vec2",
- "x": 867.4720694346967,
- "y": 314.9111193058295
- },
- {
- "__type__": "cc.Vec2",
- "x": 827.5279724985432,
- "y": 302.6426295379703
- },
- {
- "__type__": "cc.Vec2",
- "x": 787.0231719320211,
- "y": 290.45259126021654
- },
- {
- "__type__": "cc.Vec2",
- "x": 746.4259760209925,
- "y": 278.29634030575573
- },
- {
- "__type__": "cc.Vec2",
- "x": 706.2086120081057,
- "y": 266.1313131203434
- },
- {
- "__type__": "cc.Vec2",
- "x": 666.8473155845819,
- "y": 253.91712286712658
- },
- {
- "__type__": "cc.Vec2",
- "x": 628.822988631179,
- "y": 241.61613615480573
- },
- {
- "__type__": "cc.Vec2",
- "x": 592.6225744881481,
- "y": 229.19477483290615
- },
- {
- "__type__": "cc.Vec2",
- "x": 558.741461771344,
- "y": 216.62609351323235
- },
- {
- "__type__": "cc.Vec2",
- "x": 527.6874255901355,
- "y": 203.89485410443868
- },
- {
- "__type__": "cc.Vec2",
- "x": 499.98670336580864,
- "y": 191.0078141574004
- },
- {
- "__type__": "cc.Vec2",
- "x": 476.19187867701993,
- "y": 178.01530851351214
- },
- {
- "__type__": "cc.Vec2",
- "x": 456.88490917786095,
- "y": 165.0568454554078
- },
- {
- "__type__": "cc.Vec2",
- "x": 442.9054522917016,
- "y": 152.6838289322322
- },
- {
- "__type__": "cc.Vec2",
- "x": 435.0618261451884,
- "y": 141.29842525834343
- },
- {
- "__type__": "cc.Vec2",
- "x": 431.9878070246146,
- "y": 129.95353843204475
- },
- {
- "__type__": "cc.Vec2",
- "x": 432.5831794996977,
- "y": 117.00069007139068
- },
- {
- "__type__": "cc.Vec2",
- "x": 436.9183333013223,
- "y": 101.99484648766256
- },
- {
- "__type__": "cc.Vec2",
- "x": 444.8162584579838,
- "y": 85.36465092662183
- },
- {
- "__type__": "cc.Vec2",
- "x": 455.68399501674037,
- "y": 67.6929663743433
- },
- {
- "__type__": "cc.Vec2",
- "x": 468.7449510480207,
- "y": 49.4516739432097
- },
- {
- "__type__": "cc.Vec2",
- "x": 483.1748570286295,
- "y": 30.99865226614961
- },
- {
- "__type__": "cc.Vec2",
- "x": 498.14993697295654,
- "y": 12.611978863241633
- },
- {
- "__type__": "cc.Vec2",
- "x": 512.8632845828578,
- "y": -5.4928220424559875
- },
- {
- "__type__": "cc.Vec2",
- "x": 526.5334378964567,
- "y": -23.171307897735666
- },
- {
- "__type__": "cc.Vec2",
- "x": 538.4088420644443,
- "y": -40.399603662559926
- },
- {
- "__type__": "cc.Vec2",
- "x": 547.736308556294,
- "y": -57.407424407577174
- },
- {
- "__type__": "cc.Vec2",
- "x": 553.4908557195917,
- "y": -74.90059492439998
- },
- {
- "__type__": "cc.Vec2",
- "x": 553.3300997882145,
- "y": -93.48816914397867
- },
- {
- "__type__": "cc.Vec2",
- "x": 544.4719453830562,
- "y": -109.81251119085901
- },
- {
- "__type__": "cc.Vec2",
- "x": 530.8523631581346,
- "y": -121.17488365920927
- },
- {
- "__type__": "cc.Vec2",
- "x": 515.4504623174425,
- "y": -129.322257321398
- },
- {
- "__type__": "cc.Vec2",
- "x": 498.00957123662096,
- "y": -135.4193843684391
- },
- {
- "__type__": "cc.Vec2",
- "x": 478.67794069843376,
- "y": -139.92876981777286
- },
- {
- "__type__": "cc.Vec2",
- "x": 457.5650494069184,
- "y": -143.16406985014643
- },
- {
- "__type__": "cc.Vec2",
- "x": 434.8051440271342,
- "y": -145.3535991408583
- },
- {
- "__type__": "cc.Vec2",
- "x": 410.5627741590845,
- "y": -146.68273036289625
- },
- {
- "__type__": "cc.Vec2",
- "x": 385.0258384663148,
- "y": -147.31564095160013
- },
- {
- "__type__": "cc.Vec2",
- "x": 358.39850498187144,
- "y": -147.4058434292585
- },
- {
- "__type__": "cc.Vec2",
- "x": 330.89612264346204,
- "y": -147.10129401514791
- },
- {
- "__type__": "cc.Vec2",
- "x": 302.741905539699,
- "y": -146.54691191578678
- },
- {
- "__type__": "cc.Vec2",
- "x": 274.1648735826311,
- "y": -145.8858265776798
- },
- {
- "__type__": "cc.Vec2",
- "x": 245.39864868168894,
- "y": -145.25996133469488
- },
- {
- "__type__": "cc.Vec2",
- "x": 216.68085354421794,
- "y": -144.81022779988646
- },
- {
- "__type__": "cc.Vec2",
- "x": 188.25297367368253,
- "y": -144.67643515622999
- },
- {
- "__type__": "cc.Vec2",
- "x": 160.3258489261498,
- "y": -144.99731215061163
- },
- {
- "__type__": "cc.Vec2",
- "x": 131.1964801342394,
- "y": -145.849386210341
- },
- {
- "__type__": "cc.Vec2",
- "x": 99.3608990735683,
- "y": -147.12941353705403
- },
- {
- "__type__": "cc.Vec2",
- "x": 65.31195279946951,
- "y": -148.70418703871943
- },
- {
- "__type__": "cc.Vec2",
- "x": 29.532070777562993,
- "y": -150.4395168863872
- },
- {
- "__type__": "cc.Vec2",
- "x": -7.503178251769931,
- "y": -152.20083110194827
- },
- {
- "__type__": "cc.Vec2",
- "x": -45.32285952174767,
- "y": -153.85333476795262
- },
- {
- "__type__": "cc.Vec2",
- "x": -83.45975226470811,
- "y": -155.2619939999904
- },
- {
- "__type__": "cc.Vec2",
- "x": -121.4502403014072,
- "y": -156.29139531177518
- },
- {
- "__type__": "cc.Vec2",
- "x": -158.83488660461887,
- "y": -156.8054447997126
- },
- {
- "__type__": "cc.Vec2",
- "x": -195.15981332058254,
- "y": -156.66678113676045
- },
- {
- "__type__": "cc.Vec2",
- "x": -229.97928655144864,
- "y": -155.73560650358797
- },
- {
- "__type__": "cc.Vec2",
- "x": -262.86035240817836,
- "y": -153.8672445923131
- },
- {
- "__type__": "cc.Vec2",
- "x": -293.39118855317946,
- "y": -150.90672708050587
- },
- {
- "__type__": "cc.Vec2",
- "x": -321.19624273411176,
- "y": -146.67595853622288
- },
- {
- "__type__": "cc.Vec2",
- "x": -345.9624643272723,
- "y": -140.941146213183
- },
- {
- "__type__": "cc.Vec2",
- "x": -367.6626658383329,
- "y": -133.25922266908958
- },
- {
- "__type__": "cc.Vec2",
- "x": -385.4489748444827,
- "y": -122.61096878707673
- },
- {
- "__type__": "cc.Vec2",
- "x": -397.7963244212884,
- "y": -108.20451502488595
- },
- {
- "__type__": "cc.Vec2",
- "x": -403.62078453453336,
- "y": -91.30414066500633
- },
- {
- "__type__": "cc.Vec2",
- "x": -403.79765070447803,
- "y": -74.14413244069004
- },
- {
- "__type__": "cc.Vec2",
- "x": -400.35326103385864,
- "y": -57.531162114563216
- },
- {
- "__type__": "cc.Vec2",
- "x": -394.78418775691273,
- "y": -41.24107088420409
- },
- {
- "__type__": "cc.Vec2",
- "x": -388.0988290185008,
- "y": -25.038795177843223
- },
- {
- "__type__": "cc.Vec2",
- "x": -381.14226315167724,
- "y": -8.890001802724093
- },
- {
- "__type__": "cc.Vec2",
- "x": -374.7152733017389,
- "y": 7.079628325855143
- },
- {
- "__type__": "cc.Vec2",
- "x": -369.58233986160155,
- "y": 22.627246542264626
- },
- {
- "__type__": "cc.Vec2",
- "x": -366.4216271978848,
- "y": 37.433821710948735
- },
- {
- "__type__": "cc.Vec2",
- "x": -365.7420769947154,
- "y": 51.218001043179655
- },
- {
- "__type__": "cc.Vec2",
- "x": -367.8957482184338,
- "y": 63.99975734800375
- },
- {
- "__type__": "cc.Vec2",
- "x": -373.4263236222819,
- "y": 76.29446772285904
- },
- {
- "__type__": "cc.Vec2",
- "x": -383.48687593396824,
- "y": 88.71682811226654
- },
- {
- "__type__": "cc.Vec2",
- "x": -399.7840570049472,
- "y": 101.53267222280867
- },
- {
- "__type__": "cc.Vec2",
- "x": -422.6497935216729,
- "y": 114.783136191223
- },
- {
- "__type__": "cc.Vec2",
- "x": -450.6437955006289,
- "y": 128.36059196882687
- },
- {
- "__type__": "cc.Vec2",
- "x": -482.9546011459784,
- "y": 142.010158455605
- },
- {
- "__type__": "cc.Vec2",
- "x": -519.0381566682656,
- "y": 155.67554198075038
- },
- {
- "__type__": "cc.Vec2",
- "x": -558.3774643053947,
- "y": 169.33177356313882
- },
- {
- "__type__": "cc.Vec2",
- "x": -600.4721718396261,
- "y": 182.969291862722
- },
- {
- "__type__": "cc.Vec2",
- "x": -644.8323431563942,
- "y": 196.5866462517324
- },
- {
- "__type__": "cc.Vec2",
- "x": -690.9748006703543,
- "y": 210.1869418246846
- },
- {
- "__type__": "cc.Vec2",
- "x": -738.4209677829964,
- "y": 223.7760168741897
- },
- {
- "__type__": "cc.Vec2",
- "x": -786.6955989533244,
- "y": 237.36147879329704
- },
- {
- "__type__": "cc.Vec2",
- "x": -835.3260618005788,
- "y": 250.95219982903737
- },
- {
- "__type__": "cc.Vec2",
- "x": -883.841994761359,
- "y": 264.55808818693066
- },
- {
- "__type__": "cc.Vec2",
- "x": -931.7752605252184,
- "y": 278.1900575128209
- },
- {
- "__type__": "cc.Vec2",
- "x": -978.6601846472942,
- "y": 291.8601848513467
- },
- {
- "__type__": "cc.Vec2",
- "x": -1024.0341343068897,
- "y": 305.58210926337756
- },
- {
- "__type__": "cc.Vec2",
- "x": -1067.294621917291,
- "y": 319.3260774649976
- }
- ],
- "_id": "18AXDWOYFEvIzdmzmEriYc"
- },
- {
- "__type__": "cc.RigidBody2D",
- "_name": "",
- "_objFlags": 0,
- "__editorExtras__": {},
- "node": {
- "__id__": 66
- },
- "_enabled": true,
- "__prefab": null,
- "enabledContactListener": false,
- "bullet": false,
- "awakeOnLoad": true,
- "_group": 1,
- "_type": 0,
- "_allowSleep": true,
- "_gravityScale": 1,
- "_linearDamping": 0,
- "_angularDamping": 0,
- "_linearVelocity": {
- "__type__": "cc.Vec2",
- "x": 0,
- "y": 0
- },
- "_angularVelocity": 0,
- "_fixedRotation": false,
- "_id": "31vCJ7U6FLxZMD7V7xsPgT"
- },
- {
- "__type__": "cc.UITransform",
- "_name": "",
- "_objFlags": 0,
- "__editorExtras__": {},
- "node": {
- "__id__": 30
- },
- "_enabled": true,
- "__prefab": null,
- "_contentSize": {
- "__type__": "cc.Size",
- "width": 100,
- "height": 100
- },
- "_anchorPoint": {
- "__type__": "cc.Vec2",
- "x": 0.5,
- "y": 0.5
- },
- "_id": "3fDiPp7L9Hf6V5f9+duk5G"
- },
- {
- "__type__": "cc.MeshRenderer",
- "_name": "",
- "_objFlags": 0,
- "__editorExtras__": {},
- "node": {
- "__id__": 30
- },
- "_enabled": true,
- "__prefab": null,
- "_materials": [
- null
- ],
- "_visFlags": 0,
- "bakeSettings": {
- "__id__": 71
- },
- "_mesh": null,
- "_shadowCastingMode": 0,
- "_shadowReceivingMode": 1,
- "_shadowBias": 0,
- "_shadowNormalBias": 0,
- "_reflectionProbeId": -1,
- "_reflectionProbeBlendId": -1,
- "_reflectionProbeBlendWeight": 0,
- "_enabledGlobalStandardSkinObject": false,
- "_enableMorph": true,
- "_id": "29oKMy0CRF6r3Glq0OAIxX"
- },
- {
- "__type__": "cc.ModelBakeSettings",
- "texture": null,
- "uvParam": {
- "__type__": "cc.Vec4",
- "x": 0,
- "y": 0,
- "z": 0,
- "w": 0
- },
- "_bakeable": false,
- "_castShadow": false,
- "_receiveShadow": false,
- "_recieveShadow": false,
- "_lightmapSize": 64,
- "_useLightProbe": false,
- "_bakeToLightProbe": true,
- "_reflectionProbeType": 0,
- "_bakeToReflectionProbe": true
- },
- {
- "__type__": "5895dAXMtRB5Y5LDDX4xP8/",
- "_name": "",
- "_objFlags": 0,
- "__editorExtras__": {},
- "node": {
- "__id__": 30
- },
- "_enabled": true,
- "__prefab": null,
- "_syncOnOff": false,
- "_syncTarget": null,
- "_renderMode": 2,
- "_renderUVMode": 1,
- "_spEffectAsset": {
- "__uuid__": "6678422c-a9af-4d38-ab8b-535c51697f2e",
- "__expectedType__": "cc.EffectAsset"
- },
- "_spFrame": {
- "__uuid__": "cfc349a3-1881-4163-8260-b06e014def79@f9941",
- "__expectedType__": "cc.SpriteFrame"
- },
- "_headTailFixedOnOff": false,
- "_headTailFrame": null,
- "_updownFix": false,
- "_thickness": 0,
- "_offset": {
- "__type__": "cc.Vec3",
- "x": 0,
- "y": 0,
- "z": 0
- },
- "_smoothness": 16,
- "_headTailCloseOnoff": false,
- "_innerMeshSprite": null,
- "_physcisOnOff": true,
- "_physicsThickness": 0,
- "_offsetCollider": {
- "__type__": "cc.Vec3",
- "x": 0,
- "y": 0,
- "z": 0
- },
- "_visibleOnOff": true,
- "_sortInXDirection": false,
- "_editWhenRun": true,
- "_gizmotag": {
- "__uuid__": "03aaf7a0-6d40-49dc-86c4-21026d37da49@f9941",
- "__expectedType__": "cc.SpriteFrame"
- },
- "_gizmoColor": {
- "__type__": "cc.Color",
- "r": 255,
- "g": 114,
- "b": 14,
- "a": 200
- },
- "_id": "95pMdD/ylKK4mwhaz4fpB1"
- },
- {
- "__type__": "cc.UIMeshRenderer",
- "_name": "",
- "_objFlags": 0,
- "__editorExtras__": {},
- "node": {
- "__id__": 30
- },
- "_enabled": true,
- "__prefab": null,
- "_id": "aaI+81T3RASqDrL3DJMnFI"
- },
- {
- "__type__": "cc.UIMeshRenderer",
- "_name": "",
- "_objFlags": 0,
- "__editorExtras__": {},
- "node": {
- "__id__": 25
- },
- "_enabled": true,
- "__prefab": null,
- "_id": "c6zVnSy1pBcaJfcxhuz31n"
- },
- {
- "__type__": "cc.UITransform",
- "_name": "",
- "_objFlags": 0,
- "__editorExtras__": {},
- "node": {
- "__id__": 2
- },
- "_enabled": true,
- "__prefab": null,
- "_contentSize": {
- "__type__": "cc.Size",
- "width": 1280,
- "height": 720
- },
- "_anchorPoint": {
- "__type__": "cc.Vec2",
- "x": 0.5,
- "y": 0.5
- },
- "_id": "64ntZC1RlFYJHz19ZLhjyE"
- },
- {
- "__type__": "cc.Canvas",
- "_name": "",
- "_objFlags": 0,
- "__editorExtras__": {},
- "node": {
- "__id__": 2
- },
- "_enabled": true,
- "__prefab": null,
- "_cameraComponent": {
- "__id__": 4
- },
- "_alignCanvasWithScreen": true,
- "_id": "4djcHXVbtKh56TBr3ITWn6"
- },
- {
- "__type__": "cc.Widget",
- "_name": "",
- "_objFlags": 0,
- "__editorExtras__": {},
- "node": {
- "__id__": 2
- },
- "_enabled": true,
- "__prefab": null,
- "_alignFlags": 45,
- "_target": null,
- "_left": 0,
- "_right": 0,
- "_top": 0,
- "_bottom": 0,
- "_horizontalCenter": 0,
- "_verticalCenter": 0,
- "_isAbsLeft": true,
- "_isAbsRight": true,
- "_isAbsTop": true,
- "_isAbsBottom": true,
- "_isAbsHorizontalCenter": true,
- "_isAbsVerticalCenter": true,
- "_originalWidth": 0,
- "_originalHeight": 0,
- "_alignMode": 2,
- "_lockFlags": 0,
- "_id": "da+86NgvRNNoIgITfISw9u"
- },
- {
- "__type__": "cc.SceneGlobals",
- "ambient": {
- "__id__": 79
- },
- "shadows": {
- "__id__": 80
- },
- "_skybox": {
- "__id__": 81
- },
- "fog": {
- "__id__": 82
- },
- "octree": {
- "__id__": 83
- },
- "skin": {
- "__id__": 84
- },
- "lightProbeInfo": {
- "__id__": 85
- },
- "postSettings": {
- "__id__": 86
- },
- "bakedWithStationaryMainLight": false,
- "bakedWithHighpLightmap": false
- },
- {
- "__type__": "cc.AmbientInfo",
- "_skyColorHDR": {
- "__type__": "cc.Vec4",
- "x": 1,
- "y": 1,
- "z": 1,
- "w": 0.520833125
- },
- "_skyColor": {
- "__type__": "cc.Vec4",
- "x": 1,
- "y": 1,
- "z": 1,
- "w": 0.520833125
- },
- "_skyIllumHDR": 20000,
- "_skyIllum": 20000,
- "_groundAlbedoHDR": {
- "__type__": "cc.Vec4",
- "x": 0.2,
- "y": 0.2,
- "z": 0.2,
- "w": 1
- },
- "_groundAlbedo": {
- "__type__": "cc.Vec4",
- "x": 0.2,
- "y": 0.2,
- "z": 0.2,
- "w": 1
- },
- "_skyColorLDR": {
- "__type__": "cc.Vec4",
- "x": 0.452588,
- "y": 0.607642,
- "z": 0.755699,
- "w": 0
- },
- "_skyIllumLDR": 0.8,
- "_groundAlbedoLDR": {
- "__type__": "cc.Vec4",
- "x": 0.618555,
- "y": 0.577848,
- "z": 0.544564,
- "w": 0
- }
- },
- {
- "__type__": "cc.ShadowsInfo",
- "_enabled": false,
- "_type": 0,
- "_normal": {
- "__type__": "cc.Vec3",
- "x": 0,
- "y": 1,
- "z": 0
- },
- "_distance": 0,
- "_planeBias": 1,
- "_shadowColor": {
- "__type__": "cc.Color",
- "r": 76,
- "g": 76,
- "b": 76,
- "a": 255
- },
- "_maxReceived": 4,
- "_size": {
- "__type__": "cc.Vec2",
- "x": 1024,
- "y": 1024
- }
- },
- {
- "__type__": "cc.SkyboxInfo",
- "_envLightingType": 0,
- "_envmapHDR": null,
- "_envmap": null,
- "_envmapLDR": null,
- "_diffuseMapHDR": null,
- "_diffuseMapLDR": null,
- "_enabled": false,
- "_useHDR": true,
- "_editableMaterial": null,
- "_reflectionHDR": null,
- "_reflectionLDR": null,
- "_rotationAngle": 0
- },
- {
- "__type__": "cc.FogInfo",
- "_type": 0,
- "_fogColor": {
- "__type__": "cc.Color",
- "r": 200,
- "g": 200,
- "b": 200,
- "a": 255
- },
- "_enabled": false,
- "_fogDensity": 0.3,
- "_fogStart": 0.5,
- "_fogEnd": 300,
- "_fogAtten": 5,
- "_fogTop": 1.5,
- "_fogRange": 1.2,
- "_accurate": false
- },
- {
- "__type__": "cc.OctreeInfo",
- "_enabled": false,
- "_minPos": {
- "__type__": "cc.Vec3",
- "x": -1024,
- "y": -1024,
- "z": -1024
- },
- "_maxPos": {
- "__type__": "cc.Vec3",
- "x": 1024,
- "y": 1024,
- "z": 1024
- },
- "_depth": 8
- },
- {
- "__type__": "cc.SkinInfo",
- "_enabled": true,
- "_blurRadius": 0.01,
- "_sssIntensity": 3
- },
- {
- "__type__": "cc.LightProbeInfo",
- "_giScale": 1,
- "_giSamples": 1024,
- "_bounces": 2,
- "_reduceRinging": 0,
- "_showProbe": true,
- "_showWireframe": true,
- "_showConvex": false,
- "_data": null,
- "_lightProbeSphereVolume": 1
- },
- {
- "__type__": "cc.PostSettingsInfo",
- "_toneMappingType": 0
- }
- ]
|